Micron Document
Fox's Git Mirrors

Node / rns-mirrors / Reticulum-Go.git / files / pkg / librns / internal_errors.go

Displaying Raw • Download

pkg/librns/internal_errors.go 83609bcb589eb3cfc35b98ecc0b3327b2ae99d77 (83609bcb) Text, 443 B

// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2024-2026 Quad4.io

package librns

import "errors"

var (
errInvalidHandle = errors.New("invalid handle")
errInvalidArg = errors.New("invalid argument")
errNotFound = errors.New("not found")
errState = errors.New("invalid state")
errTimeout = errors.New("timeout")
errIO = errors.New("io error")
errInternal = errors.New("internal error")
)

Served by rngit 1.5.2 - Generated in 0.02s